![PyPI Now Supports iOS and Android Wheels for Mobile Python Development](https://cdn.sanity.io/images/cgdhsj6q/production/96416c872705517a6a65ad9646ce3e7caef623a0-1024x1024.webp?w=400&fit=max&auto=format)
Security News
PyPI Now Supports iOS and Android Wheels for Mobile Python Development
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
npm install derequire
derequire
can be used either as a JavaScript API or as a CLI.
var derequire = require('derequire');
var transformedCode = derequire(code, /*tokenTo=*/'_dereq_', /*tokenFrom=*/'require');
derequire
takes a string of code and replaces all instances of the tokenFrom
identifier (defaults to 'require') and replaces them with the tokenTo
identifier (defaults to '_dereq_') but only if they are functional arguments or variable declarations and subsequent uses of said argument, then returnes the code.
For multiple renames at the same time, the following syntax is accepted:
derequire(code, [
{
from: 'require',
to: '_dereq_'
},
{
from: 'define',
to: '_defi_'
}
]);
Note: In order to avoid quite a few headaches the token you're changing from and the token you're changing to need to be the same length.
There's a CLI that accepts a file path as an argument (absolute or relative to CWD) or reads from stdin
if file path is -
or omitted, and accepts -f|--from
and -t|--to
options that correspond to the API tokenFrom
and tokenTo
options. Examples:
derequire input.js > output.js
derequire < input.js > output.js
browserify input.js | derequire > output.js
browserify input.js | derequire - > output.js
derequire input.js --from require --to _gonzo_ > output.js
FAQs
remove requires
The npm package derequire receives a total of 22,750 weekly downloads. As such, derequire popularity was classified as popular.
We found that derequire demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.
Security News
Oracle seeks to dismiss fraud claims in the JavaScript trademark dispute, delaying the case and avoiding questions about its right to the name.